home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / vt420.zip / INSTALL.DAT < prev    next >
Text File  |  1995-04-27  |  3KB  |  133 lines

  1. @DefineProject
  2.     @Name     = "VT420 DEMO"
  3.     @Version  = "1.1c"
  4.     @Subdir   = "\\XKIT"
  5.     @Requires @HardDisk
  6.     @AssumeHardDisk = 1
  7.     @OutDrive = C
  8. @EndProject
  9.  
  10.  
  11. @DefineVars
  12.     @Integer @Blue       = @RGB(0,0,255)             //DEFINE COLOR BLUE
  13.     @Integer @Black      = @RGB(0,0,0)               //DEFINE COLOR BLACK
  14.     @Integer @XINI       = 0
  15.     @Integer @HOSTS      = 0
  16.     @Drive @WDrive = @WindowsDrive
  17.     @Dir   @WDir   = @WindowsDir
  18. @EndVars
  19.  
  20. @BackgroundMode(3,@Blue,@Black)
  21.  
  22. @GetOutDrive
  23.     @DLGCTRLSIZE(0,4,4,10,40)
  24.     @Suppress A
  25.     @Suppress B
  26.     @Cls
  27.     Which drive you wish @Name to be installed onto?
  28. @EndOutDrive
  29.  
  30.  
  31.  
  32. @If(@Platform == 3)
  33.  
  34. @Display
  35.  
  36. Drive @OutDrive: free space remaining ......................... @Eval(@DiskFree(@outdrive)/1024000) MB
  37.  
  38. VT420 Programs need space ...................................... 0.3 MB
  39. @Pause
  40. @EndDisplay
  41. @Endif
  42.  
  43.  
  44.  
  45. @GetSubdir
  46.     @DLGCTRLSIZE(0,4,4,5,40)
  47.     @Cls
  48.     Enter target directory name on drive @OutDrive.
  49.     Start your entry with a backslash (\). 
  50.  
  51.  
  52. @EndSubdir
  53.  
  54.  
  55.  
  56. @If (@Exists ("@WDrive:@WDir\\XLINK.INI"))
  57.     @XINI = 1
  58. @EndIf
  59.  
  60. @If (@Exists ("@OutDrive:@SubDir\\HOSTS"))
  61.     @HOSTS = 1
  62. @EndIf
  63.  
  64.  
  65.  
  66. @DefineDisk
  67.     @Label  = "Disk 1"
  68.         
  69.         @File HOSTS.EXE @Out *.*  
  70.         
  71.         @BeginLib VT.dm_
  72.         @File VT420.HLP @Out *.*
  73.         @File VTFONT.FON @Out *.*
  74.         @File VTFONT7.FON @Out *.*  
  75.         
  76.         @File VT420.000 @Out *.EXE 
  77.         
  78.         @EndLib   
  79.         
  80.         @BeginLib demord._
  81.         
  82.         @File *.* @Out *.* 
  83.         
  84.         @EndLib   
  85.  
  86.         
  87.         
  88.         @If (@XINI == 0)
  89.             @File XLINK.INI @Out @WDrive:@WDir\*.*
  90.         @EndIf
  91.         @If (@HOSTS == 0)
  92.             @File HOSTS @Out @OutDrive:@SubDir\*.*
  93.         @EndIf
  94.         
  95. @EndDisk
  96.  
  97. @SetAutoexec
  98.     @Overwrite
  99.     @Path = "@OutDrive:\\@Subdir;"
  100. @EndAutoexec
  101.  
  102.  
  103. @Finish
  104.         @If (@XINI == 0)
  105.             
  106.         
  107.   @SetINI ("xlink", "installdir", "@OutDrive:\\@SubDir", "XLINK.INI") 
  108.   @SetINI ("Xconf", "hostfile", "@OutDrive:\\@SubDir\\HOSTS", "XLINK.INI")
  109.   @SetINI ("defaults", "nfsbuf", " ", "XLINK.INI")  
  110.          @EndIf 
  111.  
  112.   @ProgramManager("[CreateGroup(VT420 Demo)]
  113.     [AddItem(@OutDrive:\\@Subdir\\VT420.exe,VT420)]
  114.     [AddItem(@OutDrive:\\@Subdir\\hosts.exe,Hosts Edit)]
  115.     [AddItem(@OutDrive:\\@Subdir\\list.wri,README!,@OutDrive:\\@Subdir\\readme.ico)] 
  116.     ")
  117.                                                      
  118. @Cls
  119.    Installation is successfully completed.
  120.    Please make sure you have your  TCP/IP loaded, 
  121.    and reboot your system.
  122.    
  123. @Pause 
  124.  
  125. @Cls
  126.    Since this is DEMO version, the application
  127.    can ONLY allow you to run for 10 minutes.
  128.    You need to RESTART your application after time-out.
  129.    
  130. @Pause 
  131.  
  132. @EndFinish
  133.